home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / pipe.dos < prev    next >
Text File  |  1995-07-13  |  1KB  |  48 lines

  1. #line 2 "osdep/pipe.dos"
  2.  
  3. /*======================================================================
  4.     pipe
  5.     
  6.     Initiate I/O to and from a process.  These functions are similar to 
  7.     popen and pclose, but both an incoming stream and an output file are 
  8.     provided.
  9.    
  10.  ====*/
  11.  
  12.  
  13.  
  14. /*----------------------------------------------------------------------
  15.      Pipe a single character
  16.  
  17.   Args: command -- string to hand the shell
  18.     outfile -- address of pointer containing file to receive output
  19.     errfile -- file to write stderr to
  20.     mode -- mode for type of shell, signal protection etc...
  21.   Returns: NULL on DOS
  22.  
  23.  ----*/
  24. PIPE_S *
  25. open_system_pipe(command, outfile, errfile, mode)
  26.      char  *command;
  27.      char **outfile;
  28.      char **errfile;
  29.      int    mode;
  30. {
  31.     return(NULL);
  32. }
  33.  
  34.  
  35.  
  36. /*----------------------------------------------------------------------
  37.     Close pipe previously allocated and wait for child's death
  38.  
  39.   Args: syspipe -- address of pointer to struct returned by open_system_pipe
  40.   Returns: 0 on DOS
  41.  ----*/
  42. int
  43. close_system_pipe(syspipe)
  44.     PIPE_S **syspipe;
  45. {
  46.     return(0);
  47. }
  48.